/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #1e3a8a;
  background-color: #f8fafc;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #2b4bba 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.navbar.scrolled {
  background: #1e3a8a;
  box-shadow: 0 2px 20px rgba(21, 128, 61, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4a017;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 2rem;
  color: #d4a017;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #f8fafc;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d4a017;
}

.nav-link::after {
  content: "✝";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d4a017;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #f8fafc;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #15803d 100%);
  color: #f8fafc;
  padding: 100px 20px 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 50px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #d4a017;
  color: #1e3a8a;
}

.btn-primary:hover {
  background: #e5b73b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #f8fafc;
  border: 2px solid #f8fafc;
}

.btn-secondary:hover {
  background: #f8fafc;
  color: #1e3a8a;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-illustration {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 160, 23, 0.2);
}

.tech-illustration i {
  font-size: 8rem;
  color: #d4a017;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: "✝";
  display: block;
  margin: 0.5rem auto;
  color: #d4a017;
  font-size: 1.2rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4a017;
}

.stat-label {
  font-size: 0.9rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  display: flex;
  justify-content: center;
}

.team-illustration {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e3a8a, #15803d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(21, 128, 61, 0.3);
}

.team-illustration i {
  font-size: 6rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(21, 128, 61, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4a017, #1e3a8a);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 128, 61, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #d4a017, #1e3a8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
}

.service-icon i {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.service-card p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card li {
  color: #4b5563;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✝";
  position: absolute;
  left: 0;
  color: #15803d;
  font-weight: bold;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e5e7eb 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(21, 128, 61, 0.1);
  position: relative;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content i {
  font-size: 2rem;
  color: #d4a017;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #4b5563;
  font-size: 0.9rem;
}

.rating {
  color: #d4a017;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #d4a017;
  margin-top: 0.25rem;
}

.contact-item h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: #4b5563;
  line-height: 1.6;
}

.contact-form {
  background: #e5e7eb;
  padding: 2.5rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 15px;
  border: 2px solid #d4a017;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

.form-group:nth-child(2),
.form-group:nth-child(3) {
  flex-direction: column;
}

.form-group:nth-child(2) input,
.form-group:nth-child(3) textarea {
  width: 100%;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: #f8fafc;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4a017;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #d4a017;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e5b73b;
  transform: translateY(-2px);
}

.footer-section h3 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4a017;
}

.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-footer i {
  color: #d4a017;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #94a3b8;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #1e3a8a, #2b4bba);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(21, 128, 61, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 50px;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .tech-illustration {
    width: 200px;
    height: 200px;
  }

  .tech-illustration i {
    font-size: 5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-group {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for better interactivity */
.service-card:hover .service-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
